github.com/google/go-cmp/cmp.diffStats.NumRemoved (field)

12 uses

	github.com/google/go-cmp/cmp (current package)
		report_compare.go#L425: 			lastStats(2).NumRemoved++
		report_slices.go#L427: 		nx := appendChunks(vx.Slice(0, ds.NumIdentical+ds.NumRemoved+ds.NumModified), diffRemoved)
		report_slices.go#L467: 			lastStats('!').NumRemoved++
		report_slices.go#L516: 			hadX, hadY := prev.NumRemoved > 0, prev.NumInserted > 0
		report_slices.go#L517: 			hasX, hasY := next.NumRemoved > 0, next.NumInserted > 0
		report_slices.go#L564: 		nx := ds.NumIdentical + ds.NumRemoved + ds.NumModified
		report_slices.go#L608: 			groups[i] = diffStats{Name: ds.Name, NumRemoved: nx, NumInserted: ny}
		report_text.go#L369: 	NumRemoved   int
		report_text.go#L380: 	return s.NumRemoved + s.NumInserted + s.NumModified
		report_text.go#L387: 	s.NumRemoved += ds.NumRemoved
		report_text.go#L402: 	counts := [...]int{s.NumIgnored, s.NumIdentical, s.NumRemoved, s.NumInserted, s.NumModified}